找传奇、传世资源到传世资源站!

pygame画圆(需pygame库)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

pygame画圆(需pygame库)
from clipboard
import pygame
from pygame.locals import *
pygame.init()
screen=pygame.display.set_mode((600,500))
pygame.display.set_caption("Drawing Circles")
while True:
    for event in pygame.event.get():
        if event.type in(QUIT,KEYDOWN):
            sys.exit()
    screen.fill((0,0,200))
    #draw a circle
    color = 255,255,0
    position=300,250
    radius=100
    width=10
    pygame.draw.circle(screen,color,position,radius,width)
    pygame.display.update()

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复